home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / smtp_file.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  122 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10259);
  10.  script_version ("$Revision: 1.23 $");
  11.  
  12.  name["english"] = "Sendmail mailing to files";
  13.  name["francais"] = "Sendmail envoye des mails aux fochiers";
  14.  script_name(english:name["english"],
  15.           francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18.  
  19. The remote SMTP server did not complain when issued the
  20. command :
  21.     MAIL FROM: root@this_host
  22.     RCPT TO: /tmp/nessus_test
  23.     
  24. This probably means that it is possible to send mail directly
  25. to files, which is a serious threat, since this allows
  26. anyone to overwrite any file on the remote server.
  27.  
  28. *** This security hole might be a false positive, since
  29. *** some MTAs will not complain to this test, but instead
  30. *** just drop the message silently.
  31. *** Check for the presence of file 'nessus_test' in /tmp !
  32.    
  33. Solution : upgrade your MTA or change it.
  34.  
  35. Risk factor : High";
  36.  
  37.  
  38.  desc["francais"] = "
  39.  
  40. Le serveur SMTP distant n'a pas refusΘ la
  41. suite de commandes suivante :
  42.     MAIL FROM: root@this_host
  43.     RCPT TO: /tmp/nessus_test
  44.     
  45. Cela signifie probablement qu'il est possible
  46. d'envoyer du courrier directement aux programmes,
  47. ce qui est un problΦme de sΘcuritΘ puisque
  48. cela permet α n'importe qui d'effacer n'importe
  49. quel fichier sur le systΦme distant.
  50.  
  51. *** Ce problΦme de sΘcuritΘ peut etre
  52. *** une fausse alerte, puisque certains MTA 
  53. *** ne refusent pas ces commandes mais ignorent
  54. *** le message envoyΘ.
  55. *** VΘrfiez la prΘsence du fichier nessus_test dans /tmp !
  56.  
  57. Solution : mettez α jour votre MTA ou changez-le.
  58.  
  59. Facteur de risque : ElevΘ";
  60.  
  61.  script_description(english:desc["english"],
  62.               francais:desc["francais"]);
  63.             
  64.  
  65.  summary["english"] = "Checks if the remote mail server can be used to gain a shell"; 
  66.  summary["francais"] = "VΘrifie si le serveur de mail distant peut etre utilisΘ pour obtenir un shell";
  67.  script_summary(english:summary["english"],
  68.           francais:summary["francais"]);
  69.  
  70.  script_category(ACT_GATHER_INFO);
  71.  
  72.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  73.            francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  74.  
  75.  family["english"] = "SMTP problems";
  76.  family["francais"] = "ProblΦmes SMTP";
  77.  script_family(english:family["english"], francais:family["francais"]);
  78.  script_dependencie("find_service.nes", "sendmail_expn.nasl", "smtpserver_detect.nasl");
  79.  script_exclude_keys("SMTP/wrapped", 
  80.                "SMTP/microsoft_esmtp_5", 
  81.               "SMTP/qmail",
  82.                "SMTP/postfix");
  83.  script_require_ports("Services/smtp", 25);
  84.  exit(0);
  85. }
  86.  
  87. #
  88. # The script code starts here
  89. #
  90.  
  91. include("smtp_func.inc");
  92.  
  93. port = get_kb_item("Services/smtp");
  94. if(!port)port = 25;
  95. if(get_port_state(port))
  96. {
  97.  soc = open_sock_tcp(port);
  98.  if(soc)
  99.  {
  100.  data = smtp_recv_banner(socket:soc);    
  101.  if("Sendmail" >!< data)exit(0); # Only Sendmail vulnerable
  102.  crp = string("HELO example.com\r\n");
  103.  send(socket:soc, data:crp);
  104.  data = recv_line(socket:soc, length:1024);
  105.  crp = string("MAIL FROM: root@",get_host_name(),"\r\n");
  106.  send(socket:soc, data:crp);
  107.  data = recv_line(socket:soc, length:1024);
  108.  crp = string("RCPT TO: /tmp/nessus_test\r\n");
  109.  send(socket:soc, data:crp);
  110.  
  111.  data = recv_line(socket:soc, length:4);
  112.  if(data == "250 "){
  113.      security_hole(port);
  114.      data = recv_line(socket:soc, length:1024);
  115.  
  116.     crp = string("DATA\r\nYour MTA is vulnerable to the 'mailto files' attack\r\n.\r\nQUIT\r\n");
  117.      send(socket:soc, data:crp);
  118.     }
  119.  close(soc);
  120.  }
  121. }
  122.